home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
lib
/
mntlib44.zoo
/
mntlib
/
cfsetosp.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-01
|
294 b
|
18 lines
/*
Public domain termios cfsetospeed() for the MiNT library
10 October 1993 entropy@terminator.rs.itd.umich.edu -- first attempt
*/
#include <types.h>
#include <termios.h>
int
cfsetospeed(stp, baudcode)
struct termios *stp;
speed_t baudcode;
{
stp->_c_ospeed = baudcode;
return 0;
}